Loren/embedded/SDK-248-notification-component#814
Loren/embedded/SDK-248-notification-component#814lposen wants to merge 5 commits intoemb-ootb/masterfrom
Conversation
|
Coverage Impact Unable to calculate total coverage change because base branch coverage was not found. Modified Files with Diff Coverage (6)
🤖 Increase coverage with AI coding...🚦 See full report on Qlty Cloud » 🛟 Help
|
❌ 12 blocking issues (15 total)
|
| )} | ||
| </View> | ||
| </Pressable> | ||
| ); |
| /** The type of view to render. */ | ||
| viewType: IterableEmbeddedViewType, | ||
| /** The message to render. */ | ||
| message: IterableEmbeddedMessage |
| * @returns The styles. | ||
| * | ||
| * @example | ||
| * const styles = getStyles(IterableEmbeddedViewType.Notification, { |
| * borderCornerRadius: 10, | ||
| * primaryBtnBackgroundColor: '#000000', | ||
| * primaryBtnTextColor: '#000000', | ||
| * }); |
| * @returns The embedded view. | ||
| * | ||
| * @example | ||
| * const { handleButtonClick, handleMessageClick, media, parsedStyles } = useEmbeddedView(IterableEmbeddedViewType.Notification, { |
There was a problem hiding this comment.
Found 3 issues:
1. tsdoc-escape-right-brace: The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag [eslint:tsdoc/syntax]
2. tsdoc-malformed-inline-tag: Expecting a TSDoc tag starting with "{@" [eslint:tsdoc/syntax]
3. tsdoc-malformed-inline-tag: Expecting a TSDoc tag starting with "{@" [eslint:tsdoc/syntax]
| * config, | ||
| * onButtonClick, | ||
| * onMessageClick, | ||
| * }); |
| * | ||
| * return ( | ||
| * <View> | ||
| * <Text>{media.url}</Text> |
| * return ( | ||
| * <View> | ||
| * <Text>{media.url}</Text> | ||
| * <Text>{media.caption}</Text> |
| * <View> | ||
| * <Text>{media.url}</Text> | ||
| * <Text>{media.caption}</Text> | ||
| * <Text>{parsedStyles.backgroundColor}</Text> |
| config, | ||
| onButtonClick = () => {}, | ||
| onMessageClick = () => {}, | ||
| }: IterableEmbeddedComponentProps |

🔹 JIRA Ticket(s) if any
✏️ Description